html, body {
    height: 100%;
    margin: 0;
    background: linear-gradient(135deg, #d18b08, #b8260c);
}

.center-container {
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    display: flex;
    align-items:end;
    border: 2px solid #333;
    background-color: #cccccc50;
    padding: 20px;
    width: 75%;
    height: 55%;
}

.bordered-box-2 {
    border: 2px solid #333;
    width: 10%;
    height: 55%;
    margin-left: 10px; /* Adjust the margin as needed for spacing */
    background-color: rgb(0, 102, 255);
}

.bordered-box-selected {
    border: 2px solid #333;
    width: 10%;
    height: 55%;
    margin-left: 10px; /* Adjust the margin as needed for spacing */
    background-color: rgb(165, 255, 255);
}

.select-container {
    margin-left: 10px;
}

label {
    font-weight: bold;
    margin-right: 10px;
}

select {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-container {
    margin-top: 10px;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    color: #fff;
    transition: background-color 0.3s ease;
}

button:hover {
    filter: brightness(1.2);
}

.start-button {
    background-color: #4CAF50; /* Green */
}

.reset-button {
    background-color: #f44336; /* Red */
}
